home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / debconf.prerm < prev    next >
Encoding:
Text File  |  2009-03-24  |  173 b   |  12 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. # copied from /usr/share/debhelper/autoscripts/prerm-python for now
  5. dpkg -L debconf |
  6.     awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
  7.     xargs rm -f >&2
  8.  
  9.  
  10.  
  11. exit 0
  12.